home *** CD-ROM | disk | FTP | other *** search
/ Sounds Terrific 1 / Sounds Terrific CD (1994)(Weird Science)(Disc 2 of 2)[!][Amiga-PC].iso / modules / f / flyer2.mod < prev    next >
Encoding:
Text File  |  1994-08-04  |  2.2 KB  |  61 lines

  1. Flyer2.Zip
  2. Flyer #1 @9438
  3. Sun Dec 15 15:34:29 1991
  4. ┌────────────────────────────────────────────────────────────────────────────┐
  5. │ Mod Name: LNETMENU.MOD                  Mod Author: Flyer 1@9438           │
  6. │ Difficulty: █▒                          Date: December 16, 1991            │
  7. │ WWIV Version: 4.2                                                          │
  8. │ Description:  Makes a menu at the WFC, where the sysop can choose between  │
  9. │               different Lnets.                                             │
  10. └────────────────────────────────────────────────────────────────────────────┘
  11.  
  12. After looking around, I noticed that there were different Lnets around.  I
  13. have the original Lnet, the LnetPlus, and the new Lnet from Eight Ball.  Well,
  14. instead of having a letter dedicated to each Lnet, or having to choose
  15. which one I like better than the other, I made a menu, where at the WFC, you
  16. could hit 'H' and it will give you a choice of which Lnets to use.  It was
  17. very easy to do.  This mod should only take you 5 minutes to install, as
  18. it just involves block copying!
  19.  
  20.  
  21.  
  22. 1)  Back up your source (Why am I even saying this?)
  23.  
  24. 2)  Load up BBS.C, and go down to around line 1090, or search for
  25.     case 'G' in the WFC Menu cases.
  26.  
  27. 3)  After case 'G', and before case 'I', block copy the following between
  28.     the two cases.
  29.  
  30.  
  31.      case 'H':
  32.        if (ok_local()) {
  33.       outchr('\x0c');
  34.           printfile("lnet.msg");
  35.           nl();
  36.           prt(1,"Your choice? ");
  37.              ch=onek("12Q");
  38.                switch(ch){
  39.            case '1': run_external("LNETPLUS"); break;
  40.                case '2': run_external("8BLNET"); break;
  41.                case 'Q': break;
  42.        }
  43.      }
  44.      break;
  45.  
  46.  
  47. Now, you can add cases, or change the filenames for the Lnets.  If you want
  48. to add cases, add the case number, and go up to the ch=onek line and add
  49. the letter or number in there.
  50.  
  51.  
  52. 4)  Make an Lnet.msg, and put it in the gfiles directory.  This is the menu
  53.     that you will see when you hit 'H'.
  54.  
  55. Thats it!!!!
  56.  
  57. As a favor to me, please email me and tell that you have seen this mod
  58. around, and that you decided to install it.  I would like to know how it
  59. got around.
  60.  
  61. Flyer - 12/16/91